/*
Fer una web amb 5 paràgrafs,
cadascun d'una classe, i aplicar
diferents propietats CSS de les que hem vist.
Surt al moodle les que hem vist.
*/

p {
	background-color: 00FFF7;
	font-family: sans-serif;
	font-weight: bold;
}

p.uno {
	color: 000000;
	font-size: 8px;
	font-weight: bolder;
	letter-spacing: 8px; 
	text-indent: 8em;	
}

p.dos {
	color: FF00F7;
	font-size: 16px;
	font-weight: lighter;
	text-decoration: overline dotted; 
	word-spacing: 1em;
	text-indent: 8em;
}

p.tres {
	color: FF9A00;
	font-size: 24px;
	font-weight: 800; 
	font-style: italic;
	line-height: 2.5;
}

p.cuatro {
	color: 767676;
	font-size: 32px;
	font-weight: 500;
	text-transform: capitalize;  
	text-align: justify;
}

